home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / cosdemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  122 b   |  6 lines

  1. program CosDemo;
  2. begin
  3.   WriteLn (Cos (SqRt (2) / 2) : 0 : 5)
  4.     { yields 0.5 since Cos (SqRt (2) / 2) = 0.5 }
  5. end.
  6.